.formtxtarea
{
    background-color: #FFFFFF;
    color: #000000;
}

.blockquotePost
{
    border: 1px solid var(--accent-backgroundcolor); 
    border-radius: 3px;
    margin: 5px;
}

.blockquotePost p.quotetext
{
    color: #000000;
    margin: 0px;
    padding-left: 3px;
    padding-right: 3px;
}

.blockquotePost p.quotetitle
{
    background: var(--accent-backgroundcolor);
    opacity: 0.5;
    color:#FFFFFF;
    margin: 0px;
    padding-left: 3px;
    padding-right: 3px;
}

.formtxtarea[placeholder]:empty::before {
    content: attr(placeholder);
    color: #555; 
}

.formtxtarea[placeholder]:empty:focus::before {
    content: "";
}


  
  .content-inner {
    flex: 1;
    padding: 2rem 15px;
  }

  .content-inner a{
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }

.forum-main {
    flex: 3;
    background-color: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
  }
  .forum-sidebar {
    flex: 1;
    background-color: #3a3a3a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin-bottom: 10px;
  }
  .forum-sidebar h1 {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
    font-size: 1.0rem;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--accent-color);
  }
  .forum-category {
    background-color: #3a3a3a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
  }
  .forum-category:hover {
    background-color: #4a4a4a;
  }
  .forum-category h3 {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0 0 0.25rem;
  }
  .forum-topic {
    padding: 0.25rem;
    font-size: 0.75rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
  }
  .forum-topic:hover {
    color: #00ffcc;
  }
  .new-topic-btn {
    margin-top: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 0.25rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }
  .new-topic-btn:hover {
    background-color: #4a4a4a;
    color: #e0e0e0;
  }
  .active-threads-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .active-thread {
    padding: 0.25rem 0;
    font-size: 0.75rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
  }
  .active-thread:hover {
    color: var(--accent-color);
  }
  @media (max-width: 1200px) {
    .content-area {
      width: 100%;
      border: none;
    }
    footer {
      padding: 0.5rem 15px 0 15px;
    }
  }
  @media (max-width: 768px) {
    .logo {
      max-width: 120px;
    }
    .banner-content {
      transform: translate(-50%, -50%) scale(0.8);
    }
    .navbar-nav .nav-link,
    .navbar-nav .dropdown-item {
      padding: 0.5rem 1rem;
    }
    .content-inner {
      flex-direction: column;
    }
    .forum-main,
    .forum-sidebar {
      width: 100%;
    }
    .forum-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .new-thread-btn {
        width: 100%;
        max-width: 200px;
    }
    .threads-table th,
    .threads-table td {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    .threads-table th:nth-child(3),
    .threads-table td:nth-child(3) {
        display: none; /* Verberg 'Reacties' kolom op kleine schermen */
    }
  }

  .forum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #3a3a3a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
  }
  .forum-header h1 {
    color: var(--accent-color);
    margin: 0;
  }
  .new-thread-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .new-thread-btn:hover {
    background-color: #4a4a4a;
    color: #e0e0e0;
  }
  .forum-threads {
    background-color: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    overflow-x: auto;
  }
  .threads-table {
    width: 100%;
    border-collapse: collapse;
  }
  .threads-table th,
  .threads-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
  }
  .threads-table th {
    background-color: #3a3a3a;
    color: var(--accent-color);
    font-weight: 600;
  }
  .threads-table td {
    color: #e0e0e0;
  }
  .threads-table tr:last-child td {
    border-bottom: none;
  }
  .threads-table tr:hover {
    background-color: #4a4a4a;
  }
  .thread-title a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .thread-title a:hover {
    color: #e0e0e0;
  }
  .thread-author,
  .thread-replies,
  .thread-last-post {
    font-size: 0.875rem;
  }
  @media (max-width: 1200px) {
    .content-area {
      width: 100%;
      border: none;
    }
    footer {
      padding: 1rem 15px 0 15px;
    }
  }
  @media (max-width: 768px) {
    .logo {
      max-width: 120px;
    }
    .banner-content {
      transform: translate(-50%, -50%) scale(0.8);
    }
    .navbar-nav .nav-link,
    .navbar-nav .dropdown-item {
      padding: 0.5rem 1rem;
    }
    .forum-header {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .new-thread-btn {
      width: 100%;
      max-width: 200px;
    }
    .threads-table th,
    .threads-table td {
      padding: 0.5rem;
      font-size: 0.875rem;
    }
    .threads-table th:nth-child(3),
    .threads-table td:nth-child(3) {
      display: none; /* Verberg 'Reacties' kolom op kleine schermen */
    }
    .post {
        flex-direction: column;
        gap: 0.5rem;
      }
      .poster-wrapper,
      .post-content {
        width: 100%;
      }
      .post-meta {
        position: static;
        justify-content: flex-end;
        margin-top: 0.25rem;
      }
      .post-text {
        padding-top: 0;
      }
  }

.usrlogo
{
    max-width: 32px;
    max-height: 32px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.thread-main {
    background-color: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
  }
  .thread-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
    /*background-color: #3a3a3a;*/
    border-radius: 0.25rem;
  }
  .post {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .poster-wrapper {
    flex: 0.5;
    background-color: #3a3a3a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    text-align: center;
  }
  .poster-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover;
    margin-bottom: 0.25rem;
  }
  .poster-name {
    color: var(--accent-color);
    font-size: 0.75rem;
    margin: 0;
  }
  .post-content {
    flex: 3;
    background-color: #3a3a3a;
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem;
    position: relative;
    transition: background-color 0.3s ease;
  }
  .post-content:hover {
    background-color: #4a4a4a;
  }
  .post-meta {
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  .post-date {
    font-size: 0.65rem;
    color: #e0e0e0;
  }
  .post-action-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0.1rem 0.3rem;
    border-radius: 0.15rem;
    transition: all 0.3s ease;
  }
  .post-action-btn:hover {
    background-color: #4a4a4a;
    color: #e0e0e0;
  }
  .post-text {
    font-size: 0.75rem;
    margin: 0;
    padding-top: 1.5rem; /* Ruimte voor meta-data */
  }
  .new-post-btn {
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 0.25rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }
  .new-post-btn:hover {
    background-color: #4a4a4a;
    color: #e0e0e0;
  }